Firebase Authentication
from
Firebase
メール、SNSアカウント、電話番号認証を用いたアカウント管理
匿名アカウントの作成も可能
code:ts
firebase.auth().onAuthStateChanged(async user => {
if (user == null) {
// 未ログイン
} else {
// サインインに成功
// userにuser情報が入る
}
}